• frmCustomerRegistration.Designer.cs
  • project /
1 namespace WarehouseManagementSystem
2 {
3     
partial class frmCustomerRegistration
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(frmCustomerRegistration));
32             
this.btnCheckAvailability = new System.Windows.Forms.Button();
33             
this.groupBox1 = new System.Windows.Forms.GroupBox();
34             
this.txtContact_no = new System.Windows.Forms.TextBox();
35             
this.txtEmail_Address = new System.Windows.Forms.TextBox();
36             
this.txtName = new System.Windows.Forms.TextBox();
37             
this.txtPassword = new System.Windows.Forms.TextBox();
38             
this.label6 = new System.Windows.Forms.Label();
39             
this.label5 = new System.Windows.Forms.Label();
40             
this.label4 = new System.Windows.Forms.Label();
41             
this.label3 = new System.Windows.Forms.Label();
42             
this.txtUsername = new System.Windows.Forms.TextBox();
43             
this.label2 = new System.Windows.Forms.Label();
44             
this.btnRegister = new System.Windows.Forms.Button();
45             
this.groupBox1.SuspendLayout();
46             
this.SuspendLayout();
47             
//
48             
// btnCheckAvailability
49             
//
50             
this.btnCheckAvailability.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
51             
this.btnCheckAvailability.ForeColor = System.Drawing.Color.Black;
52             
this.btnCheckAvailability.Location = new System.Drawing.Point(327, 34);
53             
this.btnCheckAvailability.Name = "btnCheckAvailability";
54             
this.btnCheckAvailability.Size = new System.Drawing.Size(121, 27);
55             
this.btnCheckAvailability.TabIndex = 5;
56             
this.btnCheckAvailability.Text = "Check Availabilty";
57             
this.btnCheckAvailability.UseVisualStyleBackColor = true;
58             
this.btnCheckAvailability.Click += new System.EventHandler(this.CheckAvailability_Click);
59             
//
60             
// groupBox1
61             
//
62             
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
63             
this.groupBox1.Controls.Add(this.txtContact_no);
64             
this.groupBox1.Controls.Add(this.txtEmail_Address);
65             
this.groupBox1.Controls.Add(this.btnCheckAvailability);
66             
this.groupBox1.Controls.Add(this.txtName);
67             
this.groupBox1.Controls.Add(this.txtPassword);
68             
this.groupBox1.Controls.Add(this.label6);
69             
this.groupBox1.Controls.Add(this.label5);
70             
this.groupBox1.Controls.Add(this.label4);
71             
this.groupBox1.Controls.Add(this.label3);
72             
this.groupBox1.Controls.Add(this.txtUsername);
73             
this.groupBox1.Controls.Add(this.label2);
74             
this.groupBox1.Font = new System.Drawing.Font("Palatino Linotype", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
75             
this.groupBox1.ForeColor = System.Drawing.Color.Black;
76             
this.groupBox1.Location = new System.Drawing.Point(31, 27);
77             
this.groupBox1.Name = "groupBox1";
78             
this.groupBox1.Size = new System.Drawing.Size(464, 251);
79             
this.groupBox1.TabIndex = 0;
80             
this.groupBox1.TabStop = false;
81             
this.groupBox1.Text = "User Details";
82             
//
83             
// txtContact_no
84             
//
85             
this.txtContact_no.Location = new System.Drawing.Point(139, 157);
86             
this.txtContact_no.Name = "txtContact_no";
87             
this.txtContact_no.Size = new System.Drawing.Size(133, 24);
88             
this.txtContact_no.TabIndex = 3;
89             
this.txtContact_no.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtContact_no_KeyPress);
90             
//
91             
// txtEmail_Address
92             
//
93             
this.txtEmail_Address.Location = new System.Drawing.Point(139, 201);
94             
this.txtEmail_Address.Name = "txtEmail_Address";
95             
this.txtEmail_Address.Size = new System.Drawing.Size(246, 24);
96             
this.txtEmail_Address.TabIndex = 4;
97             
this.txtEmail_Address.Validating += new System.ComponentModel.CancelEventHandler(this.Email_Address_Validating);
98             
//
99             
// txtName
100             
//
101             
this.txtName.Location = new System.Drawing.Point(139, 116);
102             
this.txtName.Name = "txtName";
103             
this.txtName.Size = new System.Drawing.Size(246, 24);
104             
this.txtName.TabIndex = 2;
105             
this.txtName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Name_Of_User_KeyPress);
106             
//
107             
// txtPassword
108             
//
109             
this.txtPassword.Location = new System.Drawing.Point(139, 75);
110             
this.txtPassword.Name = "txtPassword";
111             
this.txtPassword.PasswordChar = '*';
112             
this.txtPassword.Size = new System.Drawing.Size(172, 24);
113             
this.txtPassword.TabIndex = 1;
114             
//
115             
// label6
116             
//
117             
this.label6.AutoSize = true;
118             
this.label6.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
119             
this.label6.Location = new System.Drawing.Point(42, 201);
120             
this.label6.Name = "label6";
121             
this.label6.Size = new System.Drawing.Size(43, 18);
122             
this.label6.TabIndex = 18;
123             
this.label6.Text = "Email";
124             
//
125             
// label5
126             
//
127             
this.label5.AutoSize = true;
128             
this.label5.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
129             
this.label5.Location = new System.Drawing.Point(42, 159);
130             
this.label5.Name = "label5";
131             
this.label5.Size = new System.Drawing.Size(80, 18);
132             
this.label5.TabIndex = 17;
133             
this.label5.Text = "Contact No.";
134             
//
135             
// label4
136             
//
137             
this.label4.AutoSize = true;
138             
this.label4.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
139             
this.label4.Location = new System.Drawing.Point(42, 116);
140             
this.label4.Name = "label4";
141             
this.label4.Size = new System.Drawing.Size(45, 18);
142             
this.label4.TabIndex = 16;
143             
this.label4.Text = "Name";
144             
//
145             
// label3
146             
//
147             
this.label3.AutoSize = true;
148             
this.label3.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
149             
this.label3.Location = new System.Drawing.Point(42, 75);
150             
this.label3.Name = "label3";
151             
this.label3.Size = new System.Drawing.Size(67, 18);
152             
this.label3.TabIndex = 15;
153             
this.label3.Text = "Password";
154             
//
155             
// txtUsername
156             
//
157             
this.txtUsername.Location = new System.Drawing.Point(139, 34);
158             
this.txtUsername.Name = "txtUsername";
159             
this.txtUsername.Size = new System.Drawing.Size(172, 24);
160             
this.txtUsername.TabIndex = 0;
161             
this.txtUsername.Validating += new System.ComponentModel.CancelEventHandler(this.Username_Validating);
162             
//
163             
// label2
164             
//
165             
this.label2.AutoSize = true;
166             
this.label2.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
167             
this.label2.Location = new System.Drawing.Point(42, 34);
168             
this.label2.Name = "label2";
169             
this.label2.Size = new System.Drawing.Size(76, 18);
170             
this.label2.TabIndex = 13;
171             
this.label2.Text = "User Name";
172             
//
173             
// btnRegister
174             
//
175             
this.btnRegister.Font = new System.Drawing.Font("Palatino Linotype", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
176             
this.btnRegister.Location = new System.Drawing.Point(200, 302);
177             
this.btnRegister.Name = "btnRegister";
178             
this.btnRegister.Size = new System.Drawing.Size(142, 49);
179             
this.btnRegister.TabIndex = 1;
180             
this.btnRegister.Text = "&Register";
181             
this.btnRegister.UseVisualStyleBackColor = true;
182             
this.btnRegister.Click += new System.EventHandler(this.Register_Click);
183             
//
184             
// frmCustomerRegistration
185             
//
186             
this.AcceptButton = this.btnRegister;
187             
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
188             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
189             
this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
190             
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
191             
this.ClientSize = new System.Drawing.Size(529, 372);
192             
this.Controls.Add(this.btnRegister);
193             
this.Controls.Add(this.groupBox1);
194             
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
195             
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
196             
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
197             
this.MaximizeBox = false;
198             
this.MinimizeBox = false;
199             
this.Name = "frmCustomerRegistration";
200             
this.RightToLeft = System.Windows.Forms.RightToLeft.No;
201             
this.ShowIcon = false;
202             
this.ShowInTaskbar = false;
203             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
204             
this.Text = "Registration";
205             
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmCustomerRegistration_FormClosing);
206             
this.Load += new System.EventHandler(this.Form1_Load);
207             
this.groupBox1.ResumeLayout(false);
208             
this.groupBox1.PerformLayout();
209             
this.ResumeLayout(false);
210
211         }
212
213         
#endregion
214
215         
private System.Windows.Forms.Button btnCheckAvailability;
216         
private System.Windows.Forms.GroupBox groupBox1;
217         
private System.Windows.Forms.Label label6;
218         
private System.Windows.Forms.Label label5;
219         
private System.Windows.Forms.Label label4;
220         
private System.Windows.Forms.Label label3;
221         
private System.Windows.Forms.Label label2;
222         
private System.Windows.Forms.Button btnRegister;
223         
public System.Windows.Forms.TextBox txtName;
224         
public System.Windows.Forms.TextBox txtPassword;
225         
public System.Windows.Forms.TextBox txtUsername;
226         
public System.Windows.Forms.TextBox txtEmail_Address;
227         
public System.Windows.Forms.TextBox txtContact_no;
228     }
229 }


Gõ tìm kiếm nhanh...